home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DMAKE38C.ARJ / STDLIB.H < prev    next >
C/C++ Source or Header  |  1992-01-23  |  428b  |  25 lines

  1. #ifndef _STDLIB_INCLUDED_
  2. #define _STDLIB_INCLUDED_
  3.  
  4. extern /*GOTO*/ _exit();
  5. extern /*GOTO*/ exit();
  6. extern /*GOTO*/ abort();
  7. extern int system();
  8. extern char *getenv();
  9. extern char *calloc();
  10. extern char *malloc();
  11. extern char *realloc();
  12.  
  13. #ifndef _AIX
  14. /* The AIX compiler dies on illegal redefinition of free */
  15. extern free();
  16. #endif
  17.  
  18. extern int errno;
  19.  
  20. #ifndef EIO
  21. #    include <errno.h>
  22. #endif
  23.  
  24. #endif /* _STDLIB_INCLUDED_ */
  25.